From bb8597b6d36d66a1972c62beb2300fcdeff1747f Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Fri, 19 May 2017 10:10:49 +0200 Subject: [PATCH] xmalloc: correct _xmalloc_array() indentation It's been wrongly indented using tabs till now, and the stray blank ahead of the final return statement gets in the way of using .i files for detailed analysis of other compiler issues (-Wmisleading-indentation kicks in due to the tab->space transformation done in the course of pre-processing). Also add missing spaces inside the if() at once, including the similar case in _xzalloc_array(). Signed-off-by: Jan Beulich Reviewed-by: Wei Liu Reviewed-by: Andrew Cooper Release-acked-by: Julien Grall --- xen/include/xen/xmalloc.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/xen/include/xen/xmalloc.h b/xen/include/xen/xmalloc.h index 24a99ac244..cc2673d8ae 100644 --- a/xen/include/xen/xmalloc.h +++ b/xen/include/xen/xmalloc.h @@ -33,17 +33,17 @@ extern void *_xzalloc(unsigned long size, unsigned long align); static inline void *_xmalloc_array( unsigned long size, unsigned long align, unsigned long num) { - /* Check for overflow. */ - if (size && num > UINT_MAX / size) - return NULL; - return _xmalloc(size * num, align); + /* Check for overflow. */ + if ( size && num > UINT_MAX / size ) + return NULL; + return _xmalloc(size * num, align); } static inline void *_xzalloc_array( unsigned long size, unsigned long align, unsigned long num) { /* Check for overflow. */ - if (size && num > UINT_MAX / size) + if ( size && num > UINT_MAX / size ) return NULL; return _xzalloc(size * num, align); } -- 2.30.2